/*
//  BOOTSTRAP V5.X ADD
//
//  visual-line-breaks.css
//  ========================
//
//  The purpose of this file is to add visual line-breaks 
//  if at or above a certain container/breakpoint
//  
//  The purpose of this is to add a <span> for visual only
//
*/



/*
//
//    .col-xs-* 
//    (extra small devices - screen width equal to or greater than 0)
//
//  var(--var-grid-breakpoints-xs)
//
*/
@media (min-width: 0px) {

    :root {



    }

    
    
}


/*
//
//    .col-sm-* 
//    (small devices - screen width equal to or greater than 576px)
//
//  var(--var-grid-breakpoints-sm)
//
*/
@media (min-width: 576px) {

    :root {


        
    }

    
       
}



/*
//
//  .col-md-* 
//  (medium devices - screen width equal to or greater than 768px)
//
//  var(--var-grid-breakpoints-md)
//
*/
@media (min-width: 768px) {

    :root {


        
    }

}



/*
//
//  .col-lg-*
//  (large devices - screen width equal to or greater than 992px)
//
//  var(--var-grid-breakpoints-lg)
//
*/
@media (min-width: 992px) {

    :root {


        
    }

}



/*
//
//  .col-xl-* 
//  (xlarge devices - screen width equal to or greater than 1200px)
//
//  var(--var-grid-breakpoints-xl)
//
*/
@media (min-width: 1200px) {

    :root {


        
    }

}



/*
//
//  .col-xxl-* 
//  (xxlarge devices - screen width equal to or greater than 1400px)
//
//  var(--var-grid-breakpoints-xxl)
//
*/
@media (min-width: 1400px) {

    :root {


        
    }


}